home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Objects / SMAKEFILE < prev    next >
Text File  |  1998-03-02  |  2KB  |  56 lines

  1.  
  2. OBJECTS = abstract.o fileobject.o floatobject.o \
  3.         funcobject.o intobject.o listobject.o longobject.o \
  4.         dictobject.o methodobject.o moduleobject.o object.o \
  5.         rangeobject.o stringobject.o tupleobject.o typeobject.o \
  6.         classobject.o frameobject.o sliceobject.o complexobject.o \
  7.     cobject.o
  8.  
  9. Objects.lib: $(OBJECTS)
  10.     -delete >NIL: Objects.lib
  11.     oml Objects.lib a <@<
  12. $(OBJECTS)
  13. <
  14.  
  15.  
  16. abstract.o : abstract.c protos/abstract_protos.h /include/Python.h
  17.  
  18. classobject.o : classobject.c protos/classobject_protos2.h protos/classobject_protos.h /include/structmember.h /include/Python.h
  19.  
  20. cobject.o : cobject.c protos/cobject_protos.h /include/Python.h
  21.  
  22. complexobject.o : complexobject.c protos/complexobject_protos.h /include/mymath.h /include/Python.h
  23.  
  24. dictobject.o : dictobject.c protos/dictobject_protos.h /include/Python.h
  25.  
  26. fileobject.o : fileobject.c protos/fileobject_protos.h /include/structmember.h /include/Python.h
  27.  
  28. floatobject.o : floatobject.c protos/floatobject_protos.h /include/mymath.h /include/Python.h
  29.  
  30. frameobject.o : frameobject.c protos/frameobject_protos.h /include/structmember.h /include/opcode.h /include/frameobject.h /include/compile.h /include/Python.h
  31.  
  32. funcobject.o : funcobject.c protos/funcobject_protos.h /include/structmember.h /include/compile.h /include/Python.h
  33.  
  34. intobject.o : intobject.c protos/intobject_protos.h /include/Python.h
  35.  
  36. listobject.o : listobject.c protos/listobject_protos.h /include/Python.h
  37.  
  38. longobject.o : longobject.c protos/longobject_protos.h /include/mymath.h /include/longintrepr.h /include/Python.h
  39.  
  40. methodobject.o : methodobject.c protos/methodobject_protos.h /include/token.h /include/Python.h
  41.  
  42. moduleobject.o : moduleobject.c protos/moduleobject_protos.h /include/Python.h
  43.  
  44. object.o : object.c protos/object_protos.h /include/Python.h
  45.  
  46. rangeobject.o : rangeobject.c protos/rangeobject_protos.h /include/Python.h
  47.  
  48. sliceobject.o : sliceobject.c protos/sliceobject_protos.h /include/Python.h
  49.  
  50. stringobject.o : stringobject.c protos/stringobject_protos.h /include/mymath.h /include/Python.h
  51.  
  52. tupleobject.o : tupleobject.c protos/tupleobject_protos.h /include/Python.h
  53.  
  54. typeobject.o : typeobject.c protos/typeobject_protos.h /include/Python.h
  55.  
  56.